The Database API > Database API functions |
![]() ![]() ![]() |
The following list describes some of the arguments common to the database functions:
![]() |
Most database functions use a connection name as an argument. You can see a list of valid connection names in UltraDev's Connection Manager, or you can use MMDB.getConnectionList() to get a list of all the connection names programmatically. |
![]() |
Stored procedures often require parameters. There are two ways of specifying parameter values for database functions. First, you can provide an array of parameter values (paramValuesArray) . If you specify only parameter values, the values need to be in the sequence in which the stored procedure requires the parameters. Second, you specify parameter values to provide an array of parameter names (paramNameArray ). (You can use the MMDB.getSPParamsAsString() function to get the parameters of the stored procedure.) If you provide parameter names, the values specified in paramValuesArray need to be in the sequence in which the parameter names were specified in paramNameArray . |
![]() ![]() ![]() |